feat(apollo-react): add LoopNodeExecutionCount component#753
Open
1980computer wants to merge 2 commits into
Open
feat(apollo-react): add LoopNodeExecutionCount component#7531980computer wants to merge 2 commits into
1980computer wants to merge 2 commits into
Conversation
- Ignore .codeviz/ (code visualisation tool output) - Ignore apps/apollo-chat/ (uninitialised scaffold with no source) - Ignore **/locales/*.js (compiled lingui output; *.ts was already ignored) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Dependency License Review
License distribution
Excluded packages
|
5d97096 to
4d737ef
Compare
549df77 to
935fcf0
Compare
b1c254f to
4a59ada
Compare
4a59ada to
c41b49a
Compare
…n Count story Extracts the Option B iteration navigator from the V2 story proposals into a standalone reusable component. IterationNavigatorPill is a unified segmented pill with an All aggregate toggle, per-iteration status dots, click-to-type jump, and a crosshair shortcut to the first failed iteration. Adapts responsively across three size tiers (full ≥400px, compact 260-399px, minimal <260px) derived from props.width. Adds LoopIterationPillState to LoopNode.types and exports the component from the LoopNode module index. Adds an Execution Count doc-layout story to Components/LoopNode showing all three tiers in a live canvas preview with anatomy cards, breakpoint spec table, and usage code block. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
c41b49a to
8830088
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
LoopNodeExecutionCountLoopNodeExecutionCountStateanditerationPillStateas a first-class prop onLoopNode— the component derives the size tier from its measured width automatically, no overlay wrappers neededLoopNodeExecutionCountandLoopNodeExecutionCountStatefrom the LoopNode module indexComponents/Nodes/LoopNodewith:LoopNodeExecutionCount.test.tsx) covering all key behaviors: navigation, All toggle, inline edit, jump-to-failed, size tiers, and status color mappingComponent:
LoopNodeExecutionCountProps:
state: LoopNodeExecutionCountState— active index, total, navigation callbacks, per-iteration statuses, overall statussize?: 'full' | 'compact' | 'minimal'— responsive tier (auto-computed byLoopNodefrom its measured width)Size tiers:
fullcompactminimalDefault state: pill opens in the
Allview showing aggregate execution summary (✓ completed / ✗ failed). Clicking All toggles into individual iteration navigation.Test plan
pnpm --filter @uipath/apollo-react run format:checkpasses37 testscovering navigation, All toggle, inline edit, jump-to-failed, size tiers, status colors🤖 Generated with Claude Code